home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Magic of Interactive Entertainment
/
The Magic of Interactive Entertainment - Disc 1.iso
/
vistapro
/
install.bat
next >
Wrap
DOS Batch File
|
1994-10-02
|
4KB
|
76 lines
@ECHO OFF
REM Installation program for "Vistapro 1"
REM -----------------------------------------------------------------
IF .%1==. GOTO NEED_DRIVE
IF NOT EXIST %1\NUL GOTO NEED_DRIVE
CLS
ECHO
ECHO ╔════════════════════════════════════════════════════════════╗
ECHO ║ Vistapro 1 DISK INSTALLATION ║
ECHO ║ ║
ECHO ║ You have chosen to install this software to your %1 ║
ECHO ║ hard drive. The files will take up about 3 MB of space. ║
ECHO ║ ║
ECHO ║ ║
ECHO ║ If this is NOT what you want to do, press the Ctrl + C ║
ECHO ║ keys to end this batch program. ║
ECHO ║ ║
ECHO ╚════════════════════════════════════════════════════════════╝
ECHO
ECHO
ECHO
ECHO
ECHO
PAUSE Paused... press any key to continue the installation
CLS
ECHO ┌────────────────────────────────────────────────────────────────┐
ECHO │ Vistapro 1 will now be copied copied to your %1 hard drive. │
ECHO │ You'll see a message on your screen telling you when the │
ECHO │ installation is finished. │
ECHO └────────────────────────────────────────────────────────────────┘
ECHO
MD %1\VISTAPRO
CD \VISTAPRO
VISTA1.EXE *.* %1\VISTAPRO\
CLS
ECHO
ECHO
ECHO ╔═════════════════════════════════════════════════════════════════════════╗
ECHO ║ ║
ECHO ║ The installation of Vistapro 1 is finished! ║
ECHO ║ ║
ECHO ║ You'll find the files in the %1\VISTAPRO directory of your hard drive. ║
ECHO ║ ║
ECHO ║ Change to this directory, type MANUAL and press Enter to view the ║
ECHO ║ on-line manual. ║
ECHO ║ ║
ECHO ║ NOTE: Your mouse driver must be loaded before you start Vistapro. ║
ECHO ║ ║
ECHO ╚═════════════════════════════════════════════════════════════════════════╝
ECHO
ECHO
ECHO
PAUSE Press any key to continue...
GOTO FINISHED
:NEED_DRIVE
CLS
ECHO
ECHO
ECHO ┌─────────────────────────────────────────────────────────────┐
ECHO │ You have not specified the correct name of your hard drive. │
ECHO │ For the installation to work, you need to type │
ECHO │ │
ECHO │ INSTALL drive: │
ECHO │ │
ECHO │ (drive: is the drive letter of your hard drive) │
ECHO │ │
ECHO │ For example, to install to your C: drive... │
ECHO │ │
ECHO │ INSTALL C: │
ECHO │ │
ECHO └─────────────────────────────────────────────────────────────┘
ECHO
ECHO
ECHO
:FINISHED